home *** CD-ROM | disk | FTP | other *** search
/ Gekikoh Dennoh Club 7 / Gekikoh Dennoh Club Vol. 7 (Japan).7z / Gekikoh Dennoh Club Vol. 7 (Japan) (Track 01).bin / games / otoko / source.lzh / DAT / makefile < prev    next >
Makefile  |  1999-06-14  |  836b  |  32 lines

  1. #    makefile for disent.x
  2.  
  3. CC    = gcc
  4. CFLAGS    =
  5. AS    = has
  6. LD    = hlk
  7. INC    =
  8. LIBS    = libc.a libgnu.a
  9. LZH    = disent100
  10.  
  11. %.o:    %.c
  12.     $(CC) $(CFLAGS) -c $<
  13.  
  14. all:    disent.x stage01.dat stage02.dat stage03.dat stage04.dat
  15. disent.x:    disent.o
  16.     $(LD) $^ -o $@ -l $(LIBS)
  17.  
  18. disent.o:    disent.c ../names.h
  19.  
  20. stage01.dat:    stage01.s names.inc
  21.     has stage01.s ; hlk stage01.o ; hcv stage01.x ; rm stage01.o stage01.x ; mv stage01.r stage01.dat
  22. stage02.dat:    stage02.s names.inc
  23.     has stage02.s ; hlk stage02.o ; hcv stage02.x ; rm stage02.o stage02.x ; mv stage02.r stage02.dat
  24. stage03.dat:    stage03.s names.inc
  25.     has stage03.s ; hlk stage03.o ; hcv stage03.x ; rm stage03.o stage03.x ; mv stage03.r stage03.dat
  26. stage04.dat:    stage04.s names.inc
  27.     has stage04.s ; hlk stage04.o ; hcv stage04.x ; rm stage04.o stage04.x ; mv stage04.r stage04.dat
  28.  
  29. dist:
  30.     LHA a -t ../$(LZH)
  31.  
  32.